home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
fg
/
fgl402e
/
expas.arj
/
TEMP
/
09-07.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-01-31
|
604b
|
29 lines
program main;
uses fgmain, fgflic;
var
mode, status : integer;
width, height : integer;
header : array [1..128] of byte;
begin
fg_initpm;
status := fg_flichead('GLASS.FLI'+chr(0),header);
if (status = -1) then
begin
writeln('Can''t open GLASS.FLI.');
exit;
end
else if (status = -2) then
begin
writeln('GLASS.FLI is not a FLI or FLC file.');
exit;
end;
mode := fg_flicmode(header);
writeln('Optimal display mode is ',mode,'.');
fg_flicsize(header,width,height);
writeln('Image size is ',width,' by ',height,' pixels.');
end.